67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
import { internal } from "@app/lib/api";
|
|
import { authCookieHeader } from "@app/lib/api/cookies";
|
|
import { AxiosResponse } from "axios";
|
|
import SettingsSectionTitle from "@app/components/SettingsSectionTitle";
|
|
import DomainsTable, { DomainRow } from "../../../../components/DomainsTable";
|
|
import { getTranslations } from "next-intl/server";
|
|
import { cache } from "react";
|
|
import { GetOrgResponse } from "@server/routers/org";
|
|
import { redirect } from "next/navigation";
|
|
import OrgProvider from "@app/providers/OrgProvider";
|
|
import { ListDomainsResponse } from "@server/routers/domain";
|
|
import { toUnicode } from 'punycode';
|
|
|
|
type Props = {
|
|
params: Promise<{ orgId: string }>;
|
|
};
|
|
|
|
export default async function DomainsPage(props: Props) {
|
|
const params = await props.params;
|
|
|
|
let domains: DomainRow[] = [];
|
|
try {
|
|
const res = await internal.get<
|
|
AxiosResponse<ListDomainsResponse>
|
|
>(`/org/${params.orgId}/domains`, await authCookieHeader());
|
|
|
|
const rawDomains = res.data.data.domains as DomainRow[];
|
|
|
|
domains = rawDomains.map((domain) => ({
|
|
...domain,
|
|
baseDomain: toUnicode(domain.baseDomain),
|
|
}));
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
|
|
let org = null;
|
|
try {
|
|
const getOrg = cache(async () =>
|
|
internal.get<AxiosResponse<GetOrgResponse>>(
|
|
`/org/${params.orgId}`,
|
|
await authCookieHeader()
|
|
)
|
|
);
|
|
const res = await getOrg();
|
|
org = res.data.data;
|
|
} catch {
|
|
redirect(`/${params.orgId}`);
|
|
}
|
|
|
|
if (!org) {
|
|
}
|
|
|
|
const t = await getTranslations();
|
|
|
|
return (
|
|
<>
|
|
<OrgProvider org={org}>
|
|
<SettingsSectionTitle
|
|
title={t("domains")}
|
|
description={t("domainsDescription")}
|
|
/>
|
|
<DomainsTable domains={domains} />
|
|
</OrgProvider>
|
|
</>
|
|
);
|
|
}
|